home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / ao / plugin.h < prev   
C/C++ Source or Header  |  2005-10-18  |  2KB  |  52 lines

  1. /*
  2.  *
  3.  *  plugin.h - function declarations for libao plugins
  4.  *  
  5.  *      Copyright (C) Stan Seibert - June 2001
  6.  *
  7.  *  This file is part of libao, a cross-platform audio outputlibrary.  See
  8.  *  README for a history of this source code.
  9.  *
  10.  *  libao is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2, or (at your option)
  13.  *  any later version.
  14.  *
  15.  *  libao is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with GNU Make; see the file COPYING.  If not, write to
  22.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  *
  24.  */
  25. #ifndef __PLUGIN_H__
  26. #define __PLUGIN_H__
  27.  
  28. #ifdef __cplusplus
  29. extern "C"
  30. {
  31. #endif /* __cplusplus */
  32.     
  33. #include <stdlib.h>
  34. #include "os_types.h"
  35.  
  36. int ao_plugin_test();
  37. ao_info *ao_plugin_driver_info();
  38. int ao_plugin_device_init(ao_device *device);
  39. int ao_plugin_set_option(ao_device *device, const char *key, const char *value);
  40. int ao_plugin_open(ao_device *device, ao_sample_format *format);
  41. int ao_plugin_play(ao_device *device, const char *output_samples, 
  42.         uint_32 num_bytes);
  43. int ao_plugin_close(ao_device *device);
  44. void ao_plugin_device_clear(ao_device *device);
  45. char *ao_plugin_file_extension();
  46.  
  47. #ifdef __cplusplus
  48. }
  49. #endif /* __cplusplus */
  50.  
  51. #endif  /* __PLUGIN_H__ */
  52.